補充說明 HTML 清單
和 影片
的標籤,並練習 CSS 樣式的設定。
項目內容則都是使用 <li> 標籤
附上 W3School 介紹連結 (無序清單點我 、 有序清單點我)
我們來看看實例:
<body>
<div class="diy_card">
<video controls autoplay muted loop>
<source src="coffee_tonic_diy.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="txt">
<h3>材料:</h3>
<ul>
<li>通寧水 1 罐</li>
<li>冰塊數顆</li>
<li>咖啡 或 濃縮咖啡</li>
</ul>
<h3>作法:</h3>
<ol>
<li>在透明玻璃杯中放入冰塊</li>
<li>倒入通寧水約 8 分滿</li>
<li>可使用湯匙當輔助,緩緩地將咖啡倒入</li>
</ol>
</div>
</div>
</body>
這是未套用 CSS 樣式的樣子(由於圖片太大張,我在截圖時把它裁掉了)
這是套用 CSS 樣式的樣子
原始碼如下:
<head>
<style>
.diy_card{
width: 600px;
border: 2px dotted rgba(10, 21, 20, .2);
border-radius: 10px;
background-color: rgba(250, 230, 215, .3);
display: flex;
}
video{
width: 180px;
height: 240px;
padding: 10px 20px;
margin: auto 0;
}
h3{
padding-left: 20px;
}
ul{
list-style-image: linear-gradient(to left bottom, white, brown);
padding-bottom: 10px;
}
</style>
</head>
其中, border-radius 表示邊框的角度,0px 為直角,數值越大,弧度越大。
list-style-image 可以改變無序清單的項目圖片。 linear-gradient 表示漸層
附上 W3School 介紹連結 網址點我
實作範例:
<video controls autoplay muted loop>
<source src="coffee_tonic_diy.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
常用屬性 | 介紹 |
---|---|
controls | 顯示控制按鈕,加了才能夠撥放 |
autoplay | 自動撥放,需搭配 muted 一起使用才有效 |
muted | 靜音 |
loop | 重複撥放 |
自學指引:
實驗看看:
抱歉,今天有點來不及介紹得很詳細,內容好像有點少啊... 還不到 3 千字
明天會來介紹 display 這個屬性 ^O^/
感謝閱讀,我們明天見~~~
li, ol 這兩個屬性我在最近寫文章也常常會需要用到!實用感謝分享
感謝你收看每天5分鐘學前端